Google Cloud StorageにCORSを設定する
この設定はコンソールからは行えないため、gcloud CLI を使用する必要がある。 code:sh
# 設定前の状態を確認する
gcloud storage buckets describe gs://<バケット名>
# 設定ファイルを作る
echo '[
{
"maxAgeSeconds": 3600
}
]' > ./cors.json
# 設定を適用する
gcloud storage buckets update gs://<バケット名> --cors-file=./cors.json
# 設定後の状態を確認する
gcloud storage buckets describe gs://<バケット名>